home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.mdf / Docs / Success.dir / 00010.ls < prev    next >
Encoding:
Text File  |  1997-01-22  |  594 b   |  25 lines

  1. on prepareMovie
  2.   global idioma
  3.   puppetSound(0)
  4.   set the visible of sprite 3 to 0
  5.   set the visible of sprite 6 to 0
  6.   repeat with x = 20 to 26
  7.     set the visible of sprite x to 0
  8.   end repeat
  9.   if idioma = "french" then
  10.     set the fileName of castLib "idiomas" to the pathName & "french.cst"
  11.   else
  12.     if idioma = "deutch" then
  13.       set the fileName of castLib "idiomas" to the pathName & "deutch.cst"
  14.     else
  15.       set the fileName of castLib "idiomas" to the pathName & "english.cst"
  16.     end if
  17.   end if
  18. end
  19.  
  20. on idle
  21.   if not soundBusy(1) then
  22.     puppetSound("success")
  23.   end if
  24. end
  25.